{ :new => "add" } Output is quite close to wh..." />

Rails 3 | Routing : How to rename resource title now?

guides.rubyonrails.org/routing.html#cust... resources :menu, :controller => "menu_items", :path_names => { :new => "add" } Output is quite close to what you're after: menu_index GET /menu(.:format) {:controller=>"menu_items", :action=>"index"} POST /menu(.:format) {:controller=>"menu_items", :action=>"create"} new_menu GET /menu/add(.:format) {:controller=>"menu_items", :action=>"new"} edit_menu GET /menu/:id/edit(.:format) {:controller=>"menu_items", :action=>"edit"} menu GET /menu/:id(.:format) {:controller=>"menu_items", :action=>"show"} PUT /menu/:id(.:format) {:controller=>"menu_items", :action=>"update"} DELETE /menu/:id(.:format) {:controller=>"menu_items", :action=>"destroy"}.

Thanks! Miss it. That's exactly what I need.

– jibiel Jan 1 at 19:33.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions